home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
APDL Eductation Resources
/
APDL Eductation Resources.iso
/
programs
/
electronic
/
rlab
/
!RLaB
/
rlib
/
log2
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1995-01-16
|
284 b
|
15 lines
//-------------------------------------------------------------------//
// Syntax: log2 ( X )
// Description:
// Returns the base 2 logarithm of X
//-------------------------------------------------------------------//
log2 = function ( X )
{
return log (X) ./ log (2);
};